Skip to main content

Documentation Index

Fetch the complete documentation index at: https://sequence-0fb8d9e6-api_docs.mintlify.app/llms.txt

Use this file to discover all available pages before exploring further.

Return

An object containing the show and close functions to initiate NFT transfers from your account to another account

Import

import { useTransferModal } from "@0xsequence/marketplace-sdk/react";

Example

Basic usage:
const { show: showTransferModal } = useTransferModal();

return (
  <button
    onClick={() => {
      showTransferModal({
        collectionAddress: collectionAddress,
        chainId: collectionChainId,
        collectibleId: tokenId,
      });
    }}
  >
    Transfer
  </button>
);